form {
max-width: 500px;
margin: auto;
display: flex;
flex-direction: column;
gap: 10px;
}

input, textarea, button {
padding: 10px;
font-size: 1em;
}

button {
background-color: #0af;
color: white;
border: none;
cursor: pointer;
}

button:hover {
background-color: #08c;
}

#contact-form-section {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

#contact-form-section h2 {
  font-size: 2rem;
  color: #003b73;
  margin-bottom: 30px;
}

.contact-form {
  max-width: 600px;
  margin: auto;
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #ddd;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.input-group {
  text-align: left;
  margin-bottom: 20px;
}

.input-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.input-group input:focus,
.input-group textarea:focus {
  border-color: #007bff;
  box-shadow: 0 0 8px rgba(0, 123, 255, 0.2);
  outline: none;
}

button[type="submit"] {
  width: 100%;
  padding: 14px;
  background: #007bff;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

button[type="submit"]:hover {
  background: #0056b3;
  transform: translateY(-1px);
}

.alert {
  width: 40%;
  padding: 10px;
  margin: 10px auto;
  border-radius: 4px;
  text-align: center;
  display: block;
}

.alert-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}